home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {app} / InstallData / Syntax / VHDL.ini < prev    next >
Encoding:
INI File  |  2008-04-02  |  3.6 KB  |  158 lines

  1. [UserMenu]
  2. 1=access|access+-
  3. 2=after|after+-
  4. 3=alias|alias+-
  5. 4=architecture|architecture+-
  6. 5=array|array+-
  7. 6=assert|assert+-
  8. 7=attribute|attribute+-
  9. 8=begin|begin+-
  10. 9=block|block+-
  11. 10=body|body+-
  12. 11=buffer|buffer+-
  13. 12=case|case+-
  14. 13=component|component+-
  15. 14=configuration|configuration+-
  16. 15=constant|constant+-
  17. 16=disconnect|disconnect+-
  18. 17=downto|downto+-
  19. 18=else|else+-
  20. 19=elsif|elsif+-
  21. 20=entity|entity+-
  22. 21=exit|exit+-
  23. 22=file|file+-
  24. 23=function|function+-
  25. 24=generate|generate+-
  26. 25=generic|generic+-
  27. 26=group|group+-
  28. 27=guarded|guarded+-
  29. 28=impure|impure+-
  30. 29=inertial|inertial+-
  31. 30=inout|inout+-
  32. 31=label|label+-
  33. 32=library|library+-
  34. 33=linkage|linkage+-
  35. 34=literal|literal+-
  36. 35=loop|loop+-
  37. 36=nand|nand+-
  38. 37=next|next+-
  39. 38=null|null+-
  40. 39=open|open+-
  41. 40=others|others+-
  42. 41=package|package+-
  43. 42=port|port+-
  44. 43=postponed|postponed+-
  45. 44=procedure|procedure+-
  46. 45=process|process+-
  47. 46=pure|pure+-
  48. 47=range|range+-
  49. 48=record|record+-
  50. 49=register|register+-
  51. 50=reject|reject+-
  52. 51=report|report+-
  53. 52=return|return+-
  54. 53=select|select+-
  55. 54=severity|severity+-
  56. 55=signal|signal+-
  57. 56=shared|shared+-
  58. 57=subtype|subtype+-
  59. 58=then|then+-
  60. 59=transport|transport+-
  61. 60=type|type+-
  62. 61=unaffected|unaffected+-
  63. 62=untis|untis+-
  64. 63=until|until+-
  65. 64=variable|variable+-
  66. 65=wait|wait+-
  67. 66=when|when+-
  68. 67=while|while+-
  69. 68=with|with+-
  70. 69=xnor|xnor+-
  71. 70=active|active+-
  72. 71=ascending|ascending+-
  73. 72=base|base+-
  74. 73=delayed|delayed+-
  75. 74=driving|driving+-
  76. 75=driving_value|driving_value+-
  77. 76=event|event+-
  78. 77=falling_edge|falling_edge+-
  79. 78=high|high+-
  80. 79=image|image+-
  81. 80=instance_name|instance_name+-
  82. 81=last_active|last_active+-
  83. 82=last_event|last_event+-
  84. 83=last_value|last_value+-
  85. 84=left|left+-
  86. 85=leftof|leftof+-
  87. 86=length|length+-
  88. 87=path_name|path_name+-
  89. 88=pred|pred+-
  90. 89=quiet|quiet+-
  91. 90=reverse_range|reverse_range+-
  92. 91=right|right+-
  93. 92=rightof|rightof+-
  94. 93=rising_edge|rising_edge+-
  95. 94=simple_name|simple_name+-
  96. 95=stable|stable+-
  97. 96=succ|succ+-
  98. 97=transaction|transaction+-
  99. 98=value|value+-
  100. 99=bit_vector|bit_vector+-
  101. 100=boolean|boolean+-
  102. 101=character|character+-
  103. 102=integer|integer+-
  104. 103=line|line+-
  105. 104=natural|natural+-
  106. 105=positive|positive+-
  107. 106=real|real+-
  108. 107=signed|signed+-
  109. 108=std_logic|std_logic+-
  110. 109=std_logic_vector|std_logic_vector+-
  111. 110=string|string+-
  112. 111=text|text+-
  113. 112=time|time+-
  114. 113=unsigned|unsigned+-
  115. 114=endfile|endfile+-
  116. 115=file_close|file_close+-
  117. 116=file_open|file_open+-
  118. 117=read|read+-
  119. 118=readline|readline+-
  120. 119=write|write+-
  121. 120=writeline|writeline+-
  122.  
  123. [MultiHighlight]
  124. Syntax=
  125. File=
  126.  
  127. [Comment]
  128. 1=***************************************************************************
  129. 2=
  130. 3=<b>Syntax:          VHDL                                              </b>
  131. 4=<b>Version:         0.0                                               </b>
  132. 5=<b>Date:            31.03.2008                                        </b>
  133. 6=<b>Author:          n.n. from Ultraedit - see example for success     </b>
  134. 7=
  135. 8=<b>source file:     VHDL.txt                                          </b>
  136. 9=<b>filter:          ultraedit2rjedit-awk.txt                          </b>
  137. 10=<b>filter version:  $Revision: 1.23 $/$Date: 2006/08/15 20:05:10 $    </b>
  138. 11=
  139. 12=<b>file extensions: VHD VHO VHDL                                      </b>
  140. 13=
  141. 14=***************************************************************************
  142.  
  143. [Sample]
  144. 1=LIBRARY IEEE;
  145. 2=USE IEEE.std_logic_1164.ALL;
  146. 3=
  147. 4=ENTITY YCbCr422ToRGB IS
  148. 5=  GENERIC (
  149. 6=    usePipe   : boolean := FALSE;
  150. 7=    colorBits : integer := 8
  151. 8=  );
  152. 9=  PORT (
  153. 10=    clk             : IN  std_logic
  154. 11=  );
  155. 12=END ENTITY
  156.  
  157.  
  158.